projects
/
ostree.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
76d9d92
)
prune: Remove redundant 'bytes' in format string
author
Colin Walters
<walters@verbum.org>
Fri, 20 Dec 2013 22:44:13 +0000
(17:44 -0500)
committer
Colin Walters
<walters@verbum.org>
Fri, 20 Dec 2013 22:44:13 +0000
(17:44 -0500)
src/ostree/ot-builtin-prune.c
patch
|
blob
|
history
diff --git
a/src/ostree/ot-builtin-prune.c
b/src/ostree/ot-builtin-prune.c
index c61e41e50dc29569a61b9c3060a0b99e2f1b86b2..e483bf59ffd6a413dc1192dc168d7dadf903a615 100644
(file)
--- a/
src/ostree/ot-builtin-prune.c
+++ b/
src/ostree/ot-builtin-prune.c
@@
-70,10
+70,10
@@
ostree_builtin_prune (int argc, char **argv, OstreeRepo *repo, GCancellable *can
if (n_objects_pruned == 0)
g_print ("No unreachable objects\n");
else if (pruneflags & OSTREE_REPO_PRUNE_FLAGS_NO_PRUNE)
- g_print ("Would delete: %u objects, freeing %s
bytes
\n",
+ g_print ("Would delete: %u objects, freeing %s\n",
n_objects_pruned, formatted_freed_size);
else
- g_print ("Deleted %u objects, %s
bytes
freed\n",
+ g_print ("Deleted %u objects, %s freed\n",
n_objects_pruned, formatted_freed_size);
ret = TRUE;